Also support "draw_as_radio".
authorMatthias Clasen <maclas@gmx.de>
Fri, 29 Aug 2003 19:19:44 +0000 (19:19 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 29 Aug 2003 19:19:44 +0000 (19:19 +0000)
2003-08-29  Matthias Clasen  <maclas@gmx.de>

* gtk/gtkcheckmenuitem.c (gtk_check_menu_item_get_property):
(gtk_check_menu_item_set_property): Also support "draw_as_radio".

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkcheckmenuitem.c

index 89704409f5e81a903d952f4d10e83fba685b6139..3f2c7cf6d35ebd52a8e31f0a2e592ea6bb9e4d5f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
 
        * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install "draw_as_radio"
        as a separate property, not as an alias of "inconsistent".
+       (gtk_check_menu_item_get_property): 
+       (gtk_check_menu_item_set_property): Also support "draw_as_radio".
 
 Fri Aug 29 20:32:07 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
 
index 89704409f5e81a903d952f4d10e83fba685b6139..3f2c7cf6d35ebd52a8e31f0a2e592ea6bb9e4d5f 100644 (file)
@@ -2,6 +2,8 @@
 
        * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install "draw_as_radio"
        as a separate property, not as an alias of "inconsistent".
+       (gtk_check_menu_item_get_property): 
+       (gtk_check_menu_item_set_property): Also support "draw_as_radio".
 
 Fri Aug 29 20:32:07 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
 
index 89704409f5e81a903d952f4d10e83fba685b6139..3f2c7cf6d35ebd52a8e31f0a2e592ea6bb9e4d5f 100644 (file)
@@ -2,6 +2,8 @@
 
        * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install "draw_as_radio"
        as a separate property, not as an alias of "inconsistent".
+       (gtk_check_menu_item_get_property): 
+       (gtk_check_menu_item_set_property): Also support "draw_as_radio".
 
 Fri Aug 29 20:32:07 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
 
index 89704409f5e81a903d952f4d10e83fba685b6139..3f2c7cf6d35ebd52a8e31f0a2e592ea6bb9e4d5f 100644 (file)
@@ -2,6 +2,8 @@
 
        * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install "draw_as_radio"
        as a separate property, not as an alias of "inconsistent".
+       (gtk_check_menu_item_get_property): 
+       (gtk_check_menu_item_set_property): Also support "draw_as_radio".
 
 Fri Aug 29 20:32:07 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
 
index 89704409f5e81a903d952f4d10e83fba685b6139..3f2c7cf6d35ebd52a8e31f0a2e592ea6bb9e4d5f 100644 (file)
@@ -2,6 +2,8 @@
 
        * gtk/gtkcheckmenuitem.c (gtk_check_menu_item_class_init): Install "draw_as_radio"
        as a separate property, not as an alias of "inconsistent".
+       (gtk_check_menu_item_get_property): 
+       (gtk_check_menu_item_set_property): Also support "draw_as_radio".
 
 Fri Aug 29 20:32:07 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
 
index d7593a39e8b5007aa8e7f2637b0759a791efbd68..75db42a7f5f350dd492b87b660c52dae2ac5ad66 100644 (file)
@@ -494,6 +494,9 @@ gtk_check_menu_item_get_property (GObject     *object,
     case PROP_INCONSISTENT:
       g_value_set_boolean (value, checkitem->inconsistent);
       break;
+    case PROP_DRAW_AS_RADIO:
+      g_value_set_boolean (value, checkitem->draw_as_radio);
+      break;
     default:
       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
       break;
@@ -517,6 +520,9 @@ gtk_check_menu_item_set_property (GObject      *object,
     case PROP_INCONSISTENT:
       gtk_check_menu_item_set_inconsistent (checkitem, g_value_get_boolean (value));
       break;
+    case PROP_DRAW_AS_RADIO:
+      gtk_check_menu_item_set_draw_as_radio (checkitem, g_value_get_boolean (value));
+      break;
     default:
       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
       break;